Fix file location of .cookie when on testnet#234
Merged
petertodd merged 1 commit intopetertodd:masterfrom Jun 3, 2023
JSwambo:testnet-authentication
Merged
Fix file location of .cookie when on testnet#234petertodd merged 1 commit intopetertodd:masterfrom JSwambo:testnet-authentication
petertodd merged 1 commit intopetertodd:masterfrom
JSwambo:testnet-authentication
Conversation
Contributor
|
Note that #219 also fixes this, along with handling of sections in config files. |
|
I think 1 file changed, 1 insertion(+), 1 deletion(-)
bitcoin/core/__init__.py | 2 +-
modified bitcoin/core/__init__.py
@@ -749,7 +749,7 @@ class CoreMainParams(CoreChainParams):
PROOF_OF_WORK_LIMIT = 2**256-1 >> 32
class CoreTestNetParams(CoreMainParams):
- NAME = 'testnet'
+ NAME = 'testnet3'
GENESIS_BLOCK = Would be a simpler answer. |
Titan-C
added a commit
to Titan-C/python-bitcoinlib
that referenced
this pull request
Jan 2, 2021
Titan-C
added a commit
to Titan-C/python-bitcoinlib
that referenced
this pull request
Jul 21, 2022
Titan-C
added a commit
to Titan-C/python-bitcoinlib
that referenced
this pull request
May 7, 2023
Owner
|
Thanks! I made a new release with this fix: https://github.com/petertodd/python-bitcoinlib/blob/51eeb58e04b07bf2b25f2be20293fa182cf0f93a/release-notes.md#v0122 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The data directory for the cookie file used for authentication should be
~/.bitcoin/testnet3when connecting to bitcoin core testnet through RPC.